[id].vue 365 B

12345678910111213
  1. <template>
  2. <SearchNews v-if="type == 1"></SearchNews>
  3. <SearchJobHunting v-if="type == 5"></SearchJobHunting>
  4. <SearchJobRecruit v-if="type == 4"></SearchJobRecruit>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue'
  8. import { useRoute } from 'vue-router'
  9. const route = useRoute();
  10. let type = route.query.type
  11. let keyword = route.query.keyword
  12. </script>